BEEP Statement ---------------------------------------------------------------------------- Action Makes a sound through the speaker. Syntax BEEP Remarks The BEEP statement makes a sound through the loudspeaker. This statement makes the same sound as the following statement. PRINT CHR$(7) Example The following example uses BEEP to indicate an error in the response. CLS ' Clear the screen. DO INPUT "Hear a beep (Y or N)"; Response$ R$ = UCASE$ (MID$ (Response$,1,1)) IF R$ <> "Y" OR R$ = "N" THEN EXIT DO BEEP LOOP